net/http.http2serverConn.srv (field)
32 uses
net/http (current package)
h2_bundle.go#L4274: srv: s,
h2_bundle.go#L4424: srv *http2Server
h2_bundle.go#L4687: sc.srv.markNewGoroutine()
h2_bundle.go#L4720: sc.srv.markNewGoroutine()
h2_bundle.go#L4773: {http2SettingMaxFrameSize, sc.srv.maxReadFrameSize()},
h2_bundle.go#L4776: {http2SettingHeaderTableSize, sc.srv.maxDecoderHeaderTableSize()},
h2_bundle.go#L4777: {http2SettingInitialWindowSize, uint32(sc.srv.initialStreamRecvWindowSize())},
h2_bundle.go#L4784: if diff := sc.srv.initialConnRecvWindowSize() - http2initialWindowSize; diff > 0 {
h2_bundle.go#L4799: if sc.srv.IdleTimeout > 0 {
h2_bundle.go#L4800: sc.idleTimer = sc.srv.afterFunc(sc.srv.IdleTimeout, sc.onIdleTimer)
h2_bundle.go#L4806: settingsTimer := sc.srv.afterFunc(http2firstSettingsTimeout, sc.onSettingsTimer)
h2_bundle.go#L4875: if sc.queuedControlFrames > sc.srv.maxQueuedControlFrames() {
h2_bundle.go#L4937: timer := sc.srv.newTimer(http2prefaceTimeout) // TODO: configurable on *Server?
h2_bundle.go#L5305: sc.shutdownTimer = sc.srv.afterFunc(d, sc.onShutdownTimer)
h2_bundle.go#L5519: if sc.srv.IdleTimeout > 0 && sc.idleTimer != nil {
h2_bundle.go#L5520: sc.idleTimer.Reset(sc.srv.IdleTimeout)
h2_bundle.go#L5902: st.readDeadline = sc.srv.afterFunc(sc.hs.ReadTimeout, st.onReadTimeout)
h2_bundle.go#L5998: st.inflow.init(sc.srv.initialStreamRecvWindowSize())
h2_bundle.go#L6000: st.writeDeadline = sc.srv.afterFunc(sc.hs.WriteTimeout, st.onWriteTimeout)
h2_bundle.go#L6224: sc.srv.markNewGoroutine()
h2_bundle.go#L6521: date = rws.conn.srv.now().UTC().Format(TimeFormat)
h2_bundle.go#L6643: if !deadline.IsZero() && deadline.Before(w.rws.conn.srv.now()) {
h2_bundle.go#L6659: st.readDeadline = sc.srv.afterFunc(deadline.Sub(sc.srv.now()), st.onReadTimeout)
h2_bundle.go#L6661: st.readDeadline.Reset(deadline.Sub(sc.srv.now()))
h2_bundle.go#L6669: if !deadline.IsZero() && deadline.Before(w.rws.conn.srv.now()) {
h2_bundle.go#L6685: st.writeDeadline = sc.srv.afterFunc(deadline.Sub(sc.srv.now()), st.onWriteTimeout)
h2_bundle.go#L6687: st.writeDeadline.Reset(deadline.Sub(sc.srv.now()))
h2_bundle.go#L7136: if sc == nil || sc.srv == nil {
h2_bundle.go#L7139: f := sc.srv.CountError
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |